GetGridMappingFloat Function

public function GetGridMappingFloat(layer) result(grid_mapping)

get grid mapping for a floating point grid

Arguments

Type IntentOptional Attributes Name
type(grid_real), intent(inout) :: layer

Return Value type(CRS)


Source Code

FUNCTION GetGridMappingFloat &
!
( layer ) &
!
RESULT (grid_mapping)

IMPLICIT NONE
!Arguments with intent(in):
TYPE (grid_real), INTENT(INOUT) :: layer

!Local variables
TYPE (CRS) :: grid_mapping

!------------end of declaration------------------------------------------------

grid_mapping = layer % grid_mapping

END FUNCTION GetGridMappingFloat